home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / nasm20 / nasm20s.zoo / demo / fill.s65 < prev    next >
Encoding:
Text File  |  1993-01-22  |  153 b   |  13 lines

  1.    .macro filler
  2. foo   .= foo + 1
  3.       .if foo < 512
  4.          .byte foo & $FF
  5.          filler
  6.       .endif      
  7.    .endm   
  8.    
  9. foo   .= 0
  10.  
  11.    filler
  12.  
  13.